title Book Interview

participant Company
participant System
participant Jobseeker


entryspacing 1.2
Company->System:AddInterview()
Company<--System: interview form

Company->System:BookInterview(job_id, jobseeker_id, company_id, address, date)
alt empty form
loop empty form

Company<--System: enter valid form

end
else valid form

Jobseeker<--System: sendNotification()
Company<--System: the interview booked successfully
end


